home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / bob13.arc / X.BOB < prev    next >
Encoding:
Text File  |  1991-10-02  |  285 b   |  11 lines

  1. main()
  2. {
  3.     a = newvector(10);
  4.     b = newstring(20);
  5.     stdout << "typeof(1)=" << typeof(1) << "\n";
  6.     stdout << "typeof(a)=" << typeof(a)
  7.        << ", sizeof(a)=" << sizeof(a) << "\n";
  8.     stdout << "typeof(b)=" << typeof(b)
  9.        << ", sizeof(b)=" << sizeof(b) << "\n";
  10. }
  11.